/*产品*/
.detail-product-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.detail-product-list>li {
	width: calc(33.33% - 3rem);
	margin: 1.5rem;
	text-align: left;
}

.detail-product-list .product-img {
	border-radius: 4px;
	border: 1px solid rgb(209, 209, 209);
	overflow: hidden;
	position: relative;
}

.detail-product-list .product-img .img-div {
	transition: all 400ms;
	transform: scale(.98);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: no-repeat center center;
	background-size: contain;
}

.detail-product-list li:hover .img-div {
	transform: scale(1.04);
}

.detail-product-list .product-img::after {
	content: '';
	display: block;
	padding-top: 65.2%;
	width: 0;
	height: 0;
}

.detail-product-list h2 {
	color: rgb(145, 0, 0);
	font-size: 2rem;
	line-height: 3em;
}

.detail-product-list ol {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	box-sizing: border-box;
}

.detail-product-list ol li {
	color: rgb(80, 80, 80);
	font-size: 1.6rem;
	width: 50%;
	box-sizing: border-box;
	line-height: 1.7em;
}

.detail-product-list ol li:nth-child(odd) {
	text-align: right;
}

.detail-product-list>li .product-price {
	font-size: 2rem;
	color: rgb(11, 6, 6);
	margin: 1rem 0;
	font-weight: 700;
}

.detail-product-list>li .product-price span {
	color: rgb(145, 0, 0);
	font-size: 3.6rem;
}
